home *** CD-ROM | disk | FTP | other *** search
/ The Net Power 1997 October / NET_DISC.iso / mac / HTML Editors / BBEdit / BBEdit_4.0_Demo.hqx / BBEdit 4.0 Demo Folder / HTML Templates / Simple Page.tmpl < prev    next >
Text File  |  1997-03-19  |  2KB  |  59 lines

  1. <!--
  2.     This is a very simple example page: it consists of a heading, followed
  3.     by a a couple of links to another pages. However, it shows off some
  4.     interesting ideas, such as the "on the fly" interpretation of special
  5.     sequences of characters.
  6. -->
  7.  
  8. <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN">
  9. <HTML>
  10. <HEAD>
  11.  
  12. <!--
  13.     When creating a page from this template, the "USERNAME" string will
  14.     be replaced with the user name that you entered in the "Sharing Setup"
  15.     control panel.
  16. -->
  17.  
  18. <TITLE>#USERNAME#'s First Page</TITLE>
  19.  
  20.  
  21. </HEAD>
  22. <BODY>
  23.  
  24. <H1>#USERNAME#'s First Page</H1>
  25. <p>
  26. This example was <A HREF="http://www.barebones.com/builtwith.html">Built With BBEdit</A>.
  27. <p>
  28. To find out more about BBEdit, <A HREF="http://www.barebones.com">visit Bare Bones Software's Web site</A>.
  29. <p>
  30.  
  31. <!--
  32.     It's customary to separate version and credit information from the rest of
  33.     the page's content by using a horizontal rule, so we do that here.
  34. -->
  35.  
  36. <hr>
  37.  
  38. <!--
  39.     This little bit of HTML uses the "PERSON" tag (an HTML 3.0 extension)
  40.     to make your name known to Web search engines. The "USERNAME" will be replaced
  41.     with the name that you entered in the "Sharing Setup" control panel, and the
  42.     "LONGDATE" will be replaced with the current date.
  43. -->
  44.  
  45. Created by <PERSON>#USERNAME#</PERSON> on #LONGDATE#.
  46.  
  47. <!--
  48.     This email link will get your email address from the "Email" section
  49.     of the Internet Config settings, and replace the "IC_EMAIL" with that
  50.     address. Notice that the substitution is done twice here: once for the
  51.     anchor link, and again for the visible content.
  52. -->
  53.  
  54. <BR>
  55. For more information, please <A HREF="mailto:#IC_EMAIL#">send mail to #IC_EMAIL#</A>.
  56.  
  57. </BODY>
  58. </HTML>
  59.